export type DividerOrientation = 'horizontal' | 'vertical'; export type DividerBackground = 'faint' | 'medium' | 'bold' | 'strong' | 'translucent' | 'inverted' | 'media' | 'navigation' | 'always-dark'; export type DividerInsetToken = 'space-000' | 'space-012' | 'space-025' | 'space-050' | 'space-075' | 'space-100' | 'space-125' | 'space-150' | 'space-175' | 'space-200' | 'space-250' | 'space-300' | 'space-400' | 'space-600' | 'space-800'; export type DividerInset = 'none' | DividerInsetToken | (string & {}); export type DividerLength = 'auto' | 'full' | (string & {}); export declare class Divider { /** Direction of the divider line. Defaults to 'horizontal'. */ orientation: DividerOrientation; /** Actual parent surface context. Omit on primary and secondary surfaces. */ background: DividerBackground | undefined; /** Insets the divider from its start/end edges. Accepts spacing token names or any CSS length. */ inset: DividerInset; /** Visual line length. Defaults to filling the available axis. Accepts any CSS length. */ length: DividerLength; /** Expose the divider as a semantic separator. Visual-only dividers are hidden from assistive tech by default. */ semantic: boolean; private resolveInset; private resolveLength; render(): any; } //# sourceMappingURL=Divider.d.ts.map