import React from 'react'; import { RootProps } from '../../engines'; import { FlowProps } from './Flow.types'; type TempFlowTypes = FlowProps & { /** * Минимальный размер колонки для эластичной сетки с динамическим количеством растянутых столбцов * через `repeat(auto-fill, minmax(${minColWidth}, auto))` */ minColWidth?: string; }; export declare const flowRoot: (Root: RootProps) => React.ForwardRefExoticComponent>; export declare const flowConfig: { name: string; tag: string; layout: (Root: RootProps) => React.ForwardRefExoticComponent>; base: import("styled-components").FlattenSimpleInterpolation; defaults: {}; variations: {}; }; export {}; //# sourceMappingURL=Flow.d.ts.map