import * as React from 'react'; import { FlexProps } from '../../layout'; export type ModalFooterProps = FlexProps & { readonly children: React.ReactNode; readonly info?: { url: string; label: string; }; }; export declare const ModalFooter: React.FC; export default ModalFooter;