import { default as React } from 'react'; declare const columnsValues: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9"]; type GridAreaProps = React.PropsWithChildren & { columns: (typeof columnsValues)[number]; }; declare const GridArea: React.FC; export { GridArea, type GridAreaProps };