import { Breakpoint } from '../utils/breakpoints'; import type { ColumnSize } from './col.types'; type GridBreakpoint = Breakpoint | ''; /** * @slot default - Column content. */ export declare class Col { static Breakpoints: GridBreakpoint[]; /** * Size of the column */ size?: ColumnSize; /** * Size of the column for sm screens */ sizeSm?: ColumnSize; /** * Size of the column for md screens */ sizeMd?: ColumnSize; /** * Size of the column for lg screens */ sizeLg?: ColumnSize; onResize(): void; private getSize; private getColumnSize; private getColumnSizeStyling; render(): any; } export {};