UNPKG

707 BTypeScriptView Raw
1import type { GenerateStyle } from '@ant-design/pro-utils';
2import type { ReactNode } from 'react';
3import React from 'react';
4import type { RouteContextType } from '../../index';
5import type { FooterToolBarToken } from './style';
6export type FooterToolbarProps = {
7 extra?: React.ReactNode;
8 style?: React.CSSProperties;
9 className?: string;
10 renderContent?: (props: FooterToolbarProps & RouteContextType & {
11 leftWidth?: string;
12 }, dom: JSX.Element) => ReactNode;
13 prefixCls?: string;
14 stylish?: GenerateStyle<FooterToolBarToken>;
15 children?: React.ReactNode;
16 portalDom?: boolean;
17};
18declare const FooterToolbar: React.FC<FooterToolbarProps>;
19export { FooterToolbar };