UNPKG

796 BTypeScriptView Raw
1export interface CollapseClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** State class applied to the root element if `orientation="horizontal"`. */
5 horizontal: string;
6 /** Styles applied to the root element when the transition has entered. */
7 entered: string;
8 /** Styles applied to the root element when the transition has exited and `collapsedSize` = 0px. */
9 hidden: string;
10 /** Styles applied to the outer wrapper element. */
11 wrapper: string;
12 /** Styles applied to the inner wrapper element. */
13 wrapperInner: string;
14}
15export type CollapseClassKey = keyof CollapseClasses;
16export declare function getCollapseUtilityClass(slot: string): string;
17declare const collapseClasses: CollapseClasses;
18export default collapseClasses;