import { GridAutoFlowPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface GridAutoFlowProps { /** * The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid. * * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow */ style$GridAutoFlow: T; } export declare const gridAutoFlow: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;