import { HTMLAttributes } from "react";
interface ContainerProps extends HTMLAttributes {
customColor: string;
active: boolean;
disabled?: boolean;
}
export declare const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, ContainerProps>> & string;
export {};