import { TextAreaAppearance as FluentTextAreaAppearance } from "@fluentui/web-components"; import type { ValuesOf } from "../../util/typings.js"; /** Appearance values for {@link TextArea}. */ export declare const TextareaAppearances: { readonly outline: "outline"; readonly filledLighter: "filled-lighter"; readonly filledDarker: "filled-darker"; }; /** Type describing appearance options for {@link TextArea}. */ export type TextareaAppearance = ValuesOf; /** Autocomplete values for {@link TextArea}. */ export declare const TextareaAutocompletes: { readonly on: "on"; readonly off: "off"; }; /** Type describing autocomplete options for {@link TextArea}. */ export type TextareaAutocomplete = ValuesOf; /** Resize values for {@link TextArea}. */ export declare const TextareaResizes: { readonly none: "none"; readonly both: "both"; readonly horizontal: "horizontal"; readonly vertical: "vertical"; }; /** Type describing resize options for {@link TextArea}. */ export type TextareaResize = ValuesOf; /** Size values for {@link TextArea}. */ export declare const TextareaSizes: { readonly small: "small"; readonly medium: "medium"; readonly large: "large"; }; /** Type describing size options for {@link TextArea}. */ export type TextareaSize = ValuesOf; /** Appearance values that support display shadows for {@link TextArea}. */ export declare const TextareaAppearancesForDisplayShadows: readonly (FluentTextAreaAppearance | undefined)[]; /** Type describing appearance values that support display shadows for {@link TextArea}. */ export type TextareaAppearancesForDisplayShadow = ValuesOf; //# sourceMappingURL=textarea.options.d.ts.map