import React from 'react'; type ExpandContextState = { isExpanded: boolean; toggleExpanded(): void; }; /** * __Expand context provider__ * * An expand context provider. */ export declare const ExpandContextProvider: (props: { children: React.ReactNode; isExpanded?: boolean; isDefaultExpanded?: boolean; }) => React.JSX.Element; declare const useExpand: () => ExpandContextState; export default useExpand;