/**
 * Secrets for `react-native-code-push`
 */
export interface PluginConfigType {
    ios: {
        CodePushDeploymentKey: string;
    };
    android: {
        CodePushDeploymentKey: string;
        CodePushPublicKey?: string;
    };
}
