import { OnInit } from '@angular/core'; import { Styles, Theme } from '../../types/index'; import { Ground, GroundProps } from '../ground/index'; declare type AbsoluteProp = boolean | string; declare type LightProp = boolean | string; declare type OrientationProp = 'horizontal' | 'vertical'; declare type VariantProp = 'fullWidth' | 'inset' | 'middle'; export interface DividerProps extends GroundProps { absolute?: AbsoluteProp; light?: LightProp; orientation?: OrientationProp; variant?: VariantProp; } export declare const DividerClassKey: string; export declare type DividerClasses = 'root' | 'absolute' | 'inset' | 'light' | 'middle' | 'vertical'; export declare function DividerStyles(theme: Theme): Styles; export declare class Divider extends Ground implements OnInit { absolute: AbsoluteProp; light: LightProp; orientation: OrientationProp; variant: VariantProp; ngOnInit(): void; composeClasses(): void; } export {};