import Choice from './Choice';
import Intent from './Intent';
import Interest from './Interest';
import Option from './Option';
import Pwa from './Pwa';
export default interface LaunchConfig {
    pwas: Pwa[];
    lists: Map<string, Option[]>;
    choices: Choice[];
    interests: Interest[];
    intents: Intent[];
}
//# sourceMappingURL=LaunchConfig.d.ts.map