/** * Custom styles for the divider component * Edit this file to customize the appearance */ export interface DividerClasses { container: string; horizontal: string; vertical: string; content: { left: string; center: string; right: string; top: string; bottom: string; }; type: { solid: string; dashed: string; dotted: string; }; } export declare const defaultClasses: DividerClasses;