/** * ConfigOrCustomDialog Component * * Prompts user whether to use saved config values or customize for download. * * @since v1.50.5 */ import type React from 'react'; export interface ConfigOrCustomDialogProps { configValues: { serverType: string; mcVersion: string; }; onUseConfig: () => void; onCustomize: () => void; onCancel: () => void; isActive?: boolean; } /** * Dialog for choosing between saved config and custom download settings */ export declare function ConfigOrCustomDialog({ configValues, onUseConfig, onCustomize, onCancel, isActive }: ConfigOrCustomDialogProps): React.ReactElement; //# sourceMappingURL=ConfigOrCustomDialog.d.ts.map