import type { BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; export interface FormControlProps extends HTMLPasteProps<"div"> { /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default 'FORM_CONTROL' * @type {BoxProps['element']} * @memberof FormControlProps */ element?: BoxProps["element"]; children: React.ReactNode; } export declare const FormControl: React.ForwardRefExoticComponent>; //# sourceMappingURL=FormControl.d.ts.map