export declare type UseExpandable = Omit & { expanded: boolean; }; export declare const useExpandable: (props: UseExpandable) => ({ accessibilityRole: any; } & Omit & { style: any[] | { [x: string]: any; } | undefined; expanded: boolean; }) | ({ accessibilityRole: any; } & Omit & { expanded: boolean; });