import { default as React, ReactNode, HTMLAttributes } from 'react';
export interface ModalFooterProps extends HTMLAttributes {
/**
* Children or function as a children
*/
children: ReactNode;
/**
* Layout direction. Default is `horizontal`.
*/
direction?: 'horizontal' | 'vertical';
/**
* Allows wrapping. Default is `true`
*/
wrap?: boolean;
}
declare const ModalFooter: ({ children, direction, wrap, ...otherProps }: ModalFooterProps) => React.JSX.Element;
export default ModalFooter;
//# sourceMappingURL=ModalFooter.d.ts.map