export interface Shape {
    title(color?: string): string;
    message(color?: string): string;
    message_button(color?: string, bgColor?: string, shadowColor?: string): string;
}
export declare class Slider implements Shape {
    constructor();
    title(color?: string): string;
    message(color?: string): string;
    message_button(color?: string, bgColor?: string, shadowColor?: string): string;
}
