export interface ListDividerClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `variant="gutter"`. */ gutter: string; /** Class name applied to the root element if `variant="startDecorator"`. */ startDecorator: string; /** Class name applied to the root element if `variant="startContent"`. */ startContent: 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; } export type ListDividerClassKey = keyof ListDividerClasses; export declare function getListDividerUtilityClass(slot: string): string; declare const listDividerClasses: ListDividerClasses; export default listDividerClasses;