import './styles/main.css'; export interface ContainerProps { afterFirstLayerAcceptedAll?: VoidFunction; afterFirstLayerCloseAndAcceptedAll?: VoidFunction; afterSecondLayerAcceptedAll?: VoidFunction; afterSecondLayerCloseAndAcceptedAll?: VoidFunction; afterSettingsSaved?: VoidFunction; afterSettingsOpened?: VoidFunction; onConsentStatusUpdate: (details: Record) => void; } export declare const Container: (props: ContainerProps) => JSX.Element;