/** * Values for the 'appearance' property of the number field */ export declare const NumberFieldAppearance: { readonly underline: "underline"; readonly outline: "outline"; readonly block: "block"; readonly frameless: "frameless"; }; export type NumberFieldAppearance = (typeof NumberFieldAppearance)[keyof typeof NumberFieldAppearance];