import React from 'react'; import { GridComponents } from './context'; export type GridComponentsProviderProps = { components: Partial; children: React.ReactNode; }; /** * By using this provider, you can override any of the default layout * components to control the markup and look of the grid. * * However, overriding at this level is an advanced concern, and should not be needed * in most cases. Please reach out to the Design System Team if you need to use this component * so we are aware of the need. */ export declare const GridComponentsProvider: ({ components, children, }: GridComponentsProviderProps) => React.JSX.Element; //# sourceMappingURL=provider.d.ts.map