import type { UIInterface } from '../types'; export declare const arrowSvg: (className?: string) => string; export declare const slider: ({ name, icon, max, min, value, step }: { name: string; icon?: string; min: number; max: number; value: number; step: number; }) => string; export type Panel = { $ref: HTMLElement; key: string; select?: Function; parent?: Panel; }; export default function (it: UIInterface): void; //# sourceMappingURL=Setting.d.ts.map