import * as React from "react"; export interface FormSectionFooterProps { children?: React.ReactNode | React.ReactNode[]; } declare const FormSectionFooter: ({ children }: FormSectionFooterProps) => JSX.Element; export default FormSectionFooter;