import * as React from 'react'; import { BreakpointClasses } from '../helpers/breakpoints'; declare const spans: readonly ["1", "2", "3", "4", "5", "6"]; declare type SPANS = keyof { [key in typeof spans[number]]: string; }; declare const SPANS: BreakpointClasses; declare const starts: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]; declare type STARTS = keyof { [key in typeof starts[number]]: string; }; declare const STARTS: BreakpointClasses; interface Props { span?: SPANS | { default?: SPANS; sm?: SPANS; md?: SPANS; lg?: SPANS; xl?: SPANS; }; start?: STARTS | { default?: STARTS; sm?: STARTS; md?: STARTS; lg?: STARTS; xl?: STARTS; }; className?: React.HTMLAttributes['className']; style?: React.HTMLAttributes['style']; } declare const Row: React.FC; export default Row;