import { EmptyFeature } from './EmptyFeature';
export interface FirstRunFlagConfig {
    enabled: boolean;
    queryParameterName: string;
}
export declare class FirstRunFlagFeature extends EmptyFeature {
    constructor(config: FirstRunFlagConfig);
}
