import React from 'react'; type ExpandContentContext = { isExpandableContent: boolean; }; declare const ExpandContentContext: React.Context; /** * __Expand content provider__ * * An expand content provider allows `` to determine if it is a subitem. */ export declare const ExpandContentContextProvider: ({ children, }: { children: React.ReactNode; }) => React.JSX.Element; declare const useExpandContent: () => ExpandContentContext; export default useExpandContent;