import { ConfigPlugin } from '@expo/config-plugins';
/**
 * Expo config plugin for SprintCheck SDK
 * This plugin configures the native Android setup required for SprintCheck SDK
 */
declare const withSprintCheck: ConfigPlugin<{
    apiKey?: string;
    encryptionKey?: string;
}>;
export default withSprintCheck;
