UNPKG

557 BTypeScriptView Raw
1import type { ReactNode } from 'react';
2import React from 'react';
3import type { RouteContextType } from '../../index';
4import './index.less';
5export declare type FooterToolbarProps = {
6 extra?: React.ReactNode;
7 style?: React.CSSProperties;
8 className?: string;
9 renderContent?: (props: FooterToolbarProps & RouteContextType & {
10 leftWidth?: string;
11 }, dom: JSX.Element) => ReactNode;
12 prefixCls?: string;
13 children?: React.ReactNode;
14};
15declare const FooterToolbar: React.FC<FooterToolbarProps>;
16export default FooterToolbar;