Files
copilot-toolbox-sdfdsfds/node_modules/@ant-design/pro-layout/es/components/GlobalFooter/index.d.ts
2026-01-16 01:51:36 +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 };