export declare class Divider { /** Orientation of the Divider, horizontal if not specified. */ orientation: 'horizontal' | 'vertical'; /** Variant of the Divider, subtle if not specified. `dark-blue` is a deprecated alias for `expressive`. */ variant: 'discrete' | 'subtle' | 'soft' | 'defined' | 'strong' | 'expressive' | 'dark-blue'; render(): any; }