import { OnInit } from '@angular/core'; import { Styles, Theme } from '../../types/index'; import { Ground, GroundProps } from '../ground/index'; declare type LabelProp = string | number; export interface SashProps extends GroundProps { label: LabelProp; } export declare const SashClassKey: string; export declare type SashClasses = 'root' | 'typography'; export declare function SashStyles(theme: Theme): Styles; export declare class Sash extends Ground implements OnInit { label: LabelProp; ngOnInit(): void; composeClasses(): void; } export {};