import type { ValuesOf } from '../../Types/ValuesOf'; /** * `AutoFlow` - The `AutoFlow` object is used to describe the different types of auto flow. * * @public */ export declare const AutoFlow: { readonly Column: "column"; readonly Row: "row"; readonly RowDense: "row dense"; readonly ColumnDense: "column dense"; readonly None: "none"; }; /** * @public */ export type AutoFlow = ValuesOf; //# sourceMappingURL=AutoFlow.d.ts.map