import * as React from 'react'; import { BreakpointClasses } from '../helpers/breakpoints'; declare const MODE: { disc: string; decimal: string; none: string; }; declare const gaps: readonly ["0", "1", "2", "3", "4", "5", "6", "8", "10", "12", "16", "20", "24", "32", "40", "48", "56", "64"]; declare type GAPS = keyof { [key in typeof gaps[number]]: string; }; declare const GAPS: BreakpointClasses; interface Props { order?: 'unordered' | 'ordered'; mode?: keyof typeof MODE; gap?: GAPS | { default?: GAPS; sm?: GAPS; md?: GAPS; lg?: GAPS; xl?: GAPS; }; className?: React.HTMLAttributes['className']; style?: React.HTMLAttributes['style']; } declare const List: React.FC; export default List;