import type { GenerateServiceProps } from '../index';
/**
 * Helper function to create multiselect options with proper typing
 */
export declare function createMultiselectOptions(configs: GenerateServiceProps[]): Array<{
    value: GenerateServiceProps;
    label: string;
}>;
export declare function parseInteractiveMode(value: unknown): boolean;
