import * as React from 'react'; export type LayoutType = 'GRID' | 'LIST'; export declare const LayoutProvider: ({ children, layout, }: { children: React.ReactNode; layout: LayoutType; }) => import("react/jsx-runtime").JSX.Element; export declare const useLayout: () => LayoutType;