import type { InnerOption, SelectableValue } from './input.type'; export declare function rewriteOption(option: T): InnerOption; export declare function makeOption(str: string): { label: string; value: string; }; export declare function makeOptions(arr: Array): Array<{ label: string; value: string; }>;