export interface DividerClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `orientation="horizontal"`. */ horizontal: string; /** Class name applied to the root element if `orientation="vertical"`. */ vertical: string; /** Class name applied to the root element if `variant="inset"`. */ inset: string; /** Class name applied to the root element if `variant="fullWidth"`. */ fullWidth: string; } export type DividerClassKey = keyof DividerClasses; export declare function getDividerUtilityClass(slot: string): string; declare const DividerClasses: DividerClasses; export default DividerClasses;