import React from 'react'; export interface ExperimentProps { experimentKey: number; children?: React.ReactNode; } declare function Experiment({ experimentKey, children }: ExperimentProps): any; export declare const HackleExperiment: typeof Experiment; export {};