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