import React from 'react';
type ABTastyQAProviderProps = {
children: React.ReactNode;
isQAModeEnabled?: boolean;
envId?: string;
apiKey?: string;
};
export declare function ABTastyQAProvider({ children, isQAModeEnabled, envId, apiKey }: ABTastyQAProviderProps): JSX.Element;
export {};