export declare const colorScheme: { control: any; options: readonly ["none", "gray", "red", "orange", "yellow", "yellow-green", "green", "teal", "light-blue", "blue", "indigo", "purple", "pink", "brown"]; }; export declare const align: { control: any; options: string[]; }; export declare const verticalAlign: { control: any; options: string[]; }; export declare const placement: { control: any; options: readonly ["top", "middle", "bottom", "left", "right"]; }; export declare const size: { control: any; options: readonly ["xs", "sm", "md", "lg", "xl"]; }; export declare const state: { control: any; options: string[]; }; export declare function numberArray(length: number, multiSelect?: boolean): { control: any; options: number[]; }; export declare function getMetaArguments(componentProps: { [key: string]: any; }, originalArgs?: { [key: string]: any; }): { [x: string]: any; };