export declare const buttonMeta: { readonly name: "Button"; readonly category: "component"; readonly directManifestNode: true; readonly allowedChildren: readonly []; readonly blueprint: { readonly label: "Button"; readonly defaultProps: { readonly children: "Continue"; }; }; readonly events: { readonly press: { readonly label: "Press"; readonly eventType: "button.press"; readonly description: "Emitted when the button action runs."; readonly payloadFields: readonly []; }; }; readonly props: { readonly disabled: { readonly type: "boolean"; readonly category: "State"; }; readonly loading: { readonly type: "boolean"; readonly category: "State"; }; readonly children: { readonly type: "string"; readonly category: "Content"; readonly label: "Label"; readonly default: "Continue"; readonly authoring: { readonly authority: "instance"; }; }; readonly color: { readonly type: "enum"; readonly category: "Style"; readonly label: "Color"; readonly enum: readonly ["primary", "secondary", "tertiary", "quaternary", "neutral", "success", "warning", "error", "info", "danger"]; readonly authoring: { readonly authority: "theme"; readonly scope: "component"; readonly allowInstanceOverride: true; }; }; readonly variant: { readonly type: "enum"; readonly category: "Style"; readonly label: "Variant"; readonly enum: readonly ["solid", "outline", "ghost", "soft"]; readonly authoring: { readonly authority: "theme"; readonly scope: "component"; readonly allowInstanceOverride: true; }; }; readonly size: { readonly type: "enum"; readonly category: "Style"; readonly label: "Size"; readonly enum: readonly ["s", "m", "l"]; readonly authoring: { readonly authority: "theme"; readonly scope: "component"; readonly allowInstanceOverride: true; }; }; }; }; //# sourceMappingURL=buttonMeta.d.ts.map