Files
copilot-toolbox-template-121/node_modules/@ant-design/pro-layout/lib/components/GlobalFooter/index.d.ts
2026-01-16 02:20:32 +00:00

17 lines
520 B
TypeScript

import React from 'react';
import type { WithFalse } from '../../typing';
export type GlobalFooterProps = {
links?: WithFalse<{
key?: string;
title: React.ReactNode;
href: string;
blankTarget?: boolean;
}[]>;
copyright?: React.ReactNode;
style?: React.CSSProperties;
prefixCls?: string;
className?: string;
};
declare const GlobalFooter: ({ className, prefixCls, links, copyright, style, }: GlobalFooterProps) => React.JSX.Element | null;
export { GlobalFooter };