You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
486 B

import React, { ReactNode } from 'react';
import './index.less';
import { RouteContextType } from '../index';
export interface FooterToolbarProps {
extra?: React.ReactNode;
style?: React.CSSProperties;
className?: string;
renderContent?: (props: FooterToolbarProps & RouteContextType & {
leftWidth?: string;
}, dom: JSX.Element) => ReactNode;
prefixCls?: string;
}
declare const FooterToolbar: React.FC<FooterToolbarProps>;
export default FooterToolbar;