import { type ElementType } from 'react'; export interface CollapseStyles { classProps: { root: string; content: string; }; styleProps?: { height?: string | number; }; } export declare const useCollapseStyleProps: (isOpen: boolean, elementType: ElementType, collapseHeight?: string) => CollapseStyles;