Files
copilot-toolbox-template-news/node_modules/@ant-design/pro-layout/es/components/SettingDrawer/LayoutChange.d.ts
2026-01-12 09:12:41 +00:00

12 lines
475 B
TypeScript

import React from 'react';
import type { ProSettings } from '../../defaultSettings';
import type { SettingItemProps } from './index';
export declare const renderLayoutSettingItem: (item: SettingItemProps) => import("react/jsx-runtime").JSX.Element;
declare const LayoutSetting: React.FC<{
settings: Partial<ProSettings>;
changeSetting: (key: string, value: any, hideLoading?: boolean) => void;
hashId: string;
prefixCls: string;
}>;
export { LayoutSetting };