import { PropsWithChildren } from 'react';
import type { LayoutOption } from '../types';
export interface EmbeddedConfiguration {
    layout?: LayoutOption;
    onError?: (error: any) => void;
}
export declare const ConfigurationProvider: ({ children, layout, onError, }: PropsWithChildren<EmbeddedConfiguration>) => import("react/jsx-runtime").JSX.Element;
/**
 * Hook to access embedded configuration settings.
 */
export declare const useEmbeddedConfiguration: () => EmbeddedConfiguration;
