import { BorderToken, ColorToken, CustomComponentDefinition, FontAsset, FontToken, IconAsset, ImageAsset, InstancePropsOnlyValues } from "./types"; /** * Assets */ export declare const DEFAULT_IMAGE_ASSETS: ImageAsset[]; export declare const DEFAULT_FONT_ASSETS: FontAsset[]; export declare const DEFAULT_ICON_ASSETS: IconAsset[]; /** * Tokens */ export declare const DEFAULT_COLOR_TOKENS: ColorToken[]; export declare const DEFAULT_FONT_TOKENS: FontToken[]; export declare const DEFAULT_BORDER_TOKENS: BorderToken[]; export declare const DEFAULT_CUSTOM_COMPONENT_DEFINITIONS: CustomComponentDefinition[]; interface TailwindGroup { name: string; components: CustomComponentDefinition[]; } export declare const TEMP_TAILWIND_COMPONENT_DEFINITIONS: TailwindGroup[]; export declare const TEMP_TAILWIND_COMPONENT_PROPS: { [tailwindId: string]: InstancePropsOnlyValues; }; export {};