import { ITheme } from "../Palette/variables"; import { IButton } from "./interfaces"; interface IProps { animation: "show" | "hide" | null; height: number; showTime: number; hideTime: number; type: "default" | "info" | "success" | "warning" | "error"; buttons?: IButton; } interface IPartProps extends Partial { theme: ITheme; } export declare const Wrapper: import("styled-components").StyledComponent<"div", any, IPartProps, never>; export declare const ButtonsWrapper: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const MessageIconWrapper: import("styled-components").StyledComponent<"div", any, IPartProps, never>; export declare const Content: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const TextContent: import("styled-components").StyledComponent<"div", any, IPartProps, never>; export declare const TextMessage: import("styled-components").StyledComponent<"span", any, IPartProps, never>; export declare const TitleMessage: import("styled-components").StyledComponent<"div", any, IPartProps, never>; export declare const Container: import("styled-components").StyledComponent<"div", any, IPartProps, never>; export {};