export type UnderlyingReadable<TController> = {
    start?: (controller: TController) => void;
    pull?: (controller: TController) => void | PromiseLike<void>;
    cancel?: UnderlyingSourceCancelCallback;
};
//# sourceMappingURL=UnderlyingReadable.d.ts.map