export declare const tuple: (...args: T) => T; declare const buttonTypes: ["default", "secondary", "success", "warning", "error", "abort", "secondary-light", "success-light", "warning-light", "error-light"]; declare const normalSizes: ["mini", "small", "medium", "large"]; declare const normalTypes: ["default", "secondary", "success", "warning", "error"]; declare const themeTypes: ["dark", "light"]; declare const snippetTypes: ["default", "secondary", "success", "warning", "error", "dark", "lite"]; declare const cardTypes: ["default", "secondary", "success", "warning", "error", "dark", "lite", "alert", "purple", "violet", "viridian"]; declare const copyTypes: ["default", "slient", "prevent"]; declare const triggerTypes: ["hover", "click"]; declare const placement: ["top", "topStart", "topEnd", "left", "leftStart", "leftEnd", "bottom", "bottomStart", "bottomEnd", "right", "rightStart", "rightEnd"]; declare const dividerAlign: ["start", "center", "end", "left", "right"]; export type ButtonTypes = (typeof buttonTypes)[number]; export type NormalSizes = (typeof normalSizes)[number]; export type NormalTypes = (typeof normalTypes)[number]; export type ThemeTypes = (typeof themeTypes)[number]; export type SnippetTypes = (typeof snippetTypes)[number]; export type CardTypes = (typeof cardTypes)[number]; export type CopyTypes = (typeof copyTypes)[number]; export type TriggerTypes = (typeof triggerTypes)[number]; export type Placement = (typeof placement)[number]; export type DividerAlign = (typeof dividerAlign)[number]; export {};