12 lines
475 B
TypeScript
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 };
|