import React from 'react'; export type CardContext = { isOpen: boolean; onlyExpandContent?: boolean; statusBarHeight: number; toggle: () => void; expandContent?: React.ReactNode; }; type CardProviderType = { children: React.ReactNode; onlyExpandContent?: boolean; expandContent?: React.ReactNode; }; export declare const CardProvider: React.FC; export declare const useCardProvider: () => CardContext; export {}; //# sourceMappingURL=Context.d.ts.map