import { TextFieldType } from '@ni/fast-foundation'; /** * Values for the 'type' property of the text field. */ export { TextFieldType }; /** * Values for the 'appearance' property of the text field */ export declare const TextFieldAppearance: { readonly underline: "underline"; readonly outline: "outline"; readonly block: "block"; readonly frameless: "frameless"; }; export type TextFieldAppearance = (typeof TextFieldAppearance)[keyof typeof TextFieldAppearance];