export declare type Experiment = {
    deviceId: string;
    id: string;
    labels: string[];
    name: string;
    timestamp: number;
    totalTrials: number;
    userId: string;
};
