import type React from "react"; import { type SpaceProps } from "styled-system"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; import type { DefaultNDSThemeType } from "../theme"; export type StyledTextareaProps = React.ComponentPropsWithRef<"textarea"> & SpaceProps & { variant?: ComponentVariant; theme?: DefaultNDSThemeType; errorMessage?: string; errorList?: string[]; error?: boolean; rows?: number; isResizeable?: boolean; }; declare const StyledTextarea: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLTextAreaElement>, StyledTextareaProps>> & string; export default StyledTextarea;