import React from 'react'; import { GlobalProps } from '../../utilities/globalProps'; declare type DialogFooterProps = { aria?: { [key: string]: string; }; children: React.ReactChild[] | React.ReactChild | string; className?: string; data?: { [key: string]: string; }; id?: string; padding?: string; paddingBottom?: string; paddingX?: string; separator?: boolean; spacing?: "none" | "between" | "around" | "evenly"; } & GlobalProps; declare const DialogFooter: (props: DialogFooterProps) => JSX.Element; export default DialogFooter;