import type { GenerateStyle } from '@antdv/pro-provider'; import type { VueNode } from '@antdv/pro-utils'; import type { CSSProperties } from 'vue'; import type { RouteContextType } from '../../index'; import type { FooterToolBarToken } from './style'; export interface FooterToolbarProps { extra?: VueNode; style?: CSSProperties; className?: string; renderContent?: (props: FooterToolbarProps & RouteContextType & { leftWidth?: string; }) => VueNode; prefixCls?: string; stylish?: GenerateStyle; children?: VueNode; portalDom?: boolean; } declare const FooterToolbar: import("vue").DefineSetupFnComponent; export { FooterToolbar };