import React from 'react'; import { Theme } from 'styled-components'; import { OverlayState } from '../../../types'; type ContainerProps = { state: OverlayState; children?: React.ReactNode; label?: string; labelledBy?: string; }; export interface ThemedProps extends ContainerProps { theme: Theme; } export declare const Container: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLElement>, ThemedProps>>; export declare const ContainerWithRef: React.ForwardRefExoticComponent>; export {};