///
import { Elevation } from '../../interfaces';
interface ContainerProps {
elevation?: Elevation;
transparent?: boolean;
}
export declare const Container: import("styled-components").StyledComponent<"div", any, ContainerProps, never>;
export declare const Scroller: import("styled-components").StyledComponent<"div", any, {}, never>;
interface ItemProps {
id?: string | number;
alert?: boolean;
active?: boolean;
}
export declare const Item: import("styled-components").StyledComponent<"button", any, ItemProps, never>;
export declare const Icon: import("styled-components").StyledComponent<({ name, color, size, ...other }: import("../Icon").IconProps & import("react").HTMLAttributes) => JSX.Element, any, {}, never>;
interface CountProps {
active?: boolean;
}
export declare const Count: import("styled-components").StyledComponent<"span", any, CountProps, never>;
export declare const Divider: import("styled-components").StyledComponent<"span", any, {}, never>;
interface CheckBalloonProps {
checked?: boolean;
}
export declare const CheckBalloon: import("styled-components").StyledComponent<"div", any, CheckBalloonProps, never>;
export {};