1 | import type { GenerateStyle } from '@ant-design/pro-provider';
|
2 | import type { ReactNode } from 'react';
|
3 | import React from 'react';
|
4 | import type { RouteContextType } from '../../index';
|
5 | import type { FooterToolBarToken } from './style';
|
6 | export 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 | };
|
18 | declare const FooterToolbar: React.FC<FooterToolbarProps>;
|
19 | export { FooterToolbar };
|