export declare type Variant = "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "dark" | "light" | string; export declare type ButtonVariant = Variant | "link" | "outline-primary" | "outline-secondary" | "outline-success" | "outline-danger" | "outline-warning" | "outline-info" | "outline-dark" | "outline-light"; export declare type Color = "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "dark" | "light" | "white" | "muted"; export declare type Placement = import("solid-bootstrap-core").DropdownProps["placement"]; export declare type AlignDirection = "start" | "end"; export declare type ResponsiveAlignProp = { sm: AlignDirection; } | { md: AlignDirection; } | { lg: AlignDirection; } | { xl: AlignDirection; } | { xxl: AlignDirection; }; export declare type AlignType = AlignDirection | ResponsiveAlignProp; export declare type RootCloseEvent = "click" | "mousedown"; export declare type GapValue = 0 | 1 | 2 | 3 | 4 | 5;