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