import { ButtonType } from "../typings/Button"; export declare const smallButtonHeight = 40; declare const styleBasedOnSize: { "x-small": { height: number; minWidth: number; } | { fontSize: import("csstype").FontSizeProperty; fontWeight: import("csstype").FontWeightProperty; color: string; height: number; minWidth: number; }; small: { height: number; minWidth: number; } | { fontSize: import("csstype").FontSizeProperty; fontWeight: import("csstype").FontWeightProperty; color: string; height: number; minWidth: number; }; large: { height: number; minWidth: number; } | { fontSize: import("csstype").FontSizeProperty; fontWeight: import("csstype").FontWeightProperty; color: string; height: number; minWidth: number; }; }; export declare const getButtonStyle: (size: keyof typeof styleBasedOnSize, type: ButtonType, showShadow: boolean, filled: boolean) => string; export declare const iconStyle: string; export declare const dropDownButtonStyle: string; export declare const dropDownButtonDefaultStyle: string; export {};