export declare const PENDING: unique symbol; export interface OutputStore { readonly set: (key: string, value: unknown) => void; readonly has: (key: string) => boolean; readonly get: (key: string, options: { readonly lenient: boolean; }) => unknown; } export declare const createStore: () => OutputStore; //# sourceMappingURL=store.d.ts.map