export declare const datePickerMeta: { readonly name: "DatePicker"; readonly category: "component"; readonly description: "Captures a local calendar date through the shared BottomSheet picker host."; readonly directManifestNode: true; readonly allowedChildren: readonly []; readonly blueprint: { readonly label: "Date picker"; readonly defaultProps: { readonly value: null; readonly placeholder: "Choose date"; readonly disabled: false; readonly required: false; }; }; readonly events: { readonly valueChange: { readonly label: "Value change"; readonly eventType: "datePicker.valueChange"; readonly description: "Emitted when a local calendar date is selected."; readonly payloadFields: readonly [{ readonly path: "value"; readonly type: "string"; readonly label: "Value"; }]; }; }; readonly props: { readonly value: { readonly type: "string"; readonly category: "State"; readonly label: "Value"; readonly default: null; readonly authoring: { readonly authority: "instance"; }; }; readonly label: { readonly type: "string"; readonly category: "Content"; readonly label: "Label"; }; readonly description: { readonly type: "string"; readonly category: "Content"; readonly label: "Description"; }; readonly error: { readonly type: "string"; readonly category: "Validation"; readonly label: "Error"; }; readonly placeholder: { readonly type: "string"; readonly category: "Content"; readonly label: "Placeholder"; readonly default: "Choose date"; }; readonly minDate: { readonly type: "string"; readonly category: "Validation"; readonly label: "Minimum date"; }; readonly maxDate: { readonly type: "string"; readonly category: "Validation"; readonly label: "Maximum date"; }; readonly disabled: { readonly type: "boolean"; readonly category: "State"; readonly label: "Disabled"; readonly default: false; }; readonly required: { readonly type: "boolean"; readonly category: "Validation"; readonly label: "Required"; readonly default: false; }; }; }; //# sourceMappingURL=datePickerMeta.d.ts.map