import { RNRiveError } from './types'; export type Without = { [P in Exclude]?: never; }; export type XOR = T | U extends object ? (Without & U) | (Without & T) : T | U; export declare function isEnum(enumType: EnumType, enumValue: string): enumValue is EnumType[keyof EnumType]; export declare function convertErrorFromNativeToRN(errorFromNative: { type: string; message: string; }): RNRiveError | null; //# sourceMappingURL=helpers.d.ts.map