/** * Internal dependencies */ import ViewTable from './table'; import ViewGrid from './grid'; import ViewList from './list'; import ViewActivity from './activity'; import ViewPickerGrid from './picker-grid'; import ViewPickerTable from './picker-table'; import DensityPicker from './utils/density-picker'; import GridConfigOptions from './utils/grid-config-options'; export declare const VIEW_LAYOUTS: ({ type: string; label: import("@wordpress/i18n").TranslatableText<"Table">; component: typeof ViewTable; icon: import("react").JSX.Element; viewConfigOptions: typeof DensityPicker; isPicker?: undefined; } | { type: string; label: import("@wordpress/i18n").TranslatableText<"Grid">; component: typeof ViewGrid; icon: import("react").JSX.Element; viewConfigOptions: typeof GridConfigOptions; isPicker?: undefined; } | { type: string; label: import("@wordpress/i18n").TranslatableText<"List">; component: typeof ViewList; icon: import("react").JSX.Element; viewConfigOptions: typeof DensityPicker; isPicker?: undefined; } | { type: string; label: import("@wordpress/i18n").TranslatableText<"Activity">; component: typeof ViewActivity; icon: import("react").JSX.Element; viewConfigOptions: typeof DensityPicker; isPicker?: undefined; } | { type: string; label: import("@wordpress/i18n").TranslatableText<"Grid">; component: typeof ViewPickerGrid; icon: import("react").JSX.Element; viewConfigOptions: typeof GridConfigOptions; isPicker: boolean; } | { type: string; label: import("@wordpress/i18n").TranslatableText<"Table">; component: typeof ViewPickerTable; icon: import("react").JSX.Element; viewConfigOptions: typeof DensityPicker; isPicker: boolean; })[]; //# sourceMappingURL=index.d.ts.map