export declare type ButtonActions = {
    title: string;
    action: () => void;
};
export declare const enum ButtonStyle {
    Inline = "inline",
    Normal = "normal",
    Secondary = "secondary",
    Spinner = "spinner",
    Progress = "progress"
}
