import * as React from 'react'; interface FooterToolbarProps { children: React.ReactNode; prefixCls?: string; className?: string; target?: () => HTMLElement | Window | null; style?: React.CSSProperties; } declare const FooterToolbar: React.FC; export default FooterToolbar;