import { AttributeReference } from '@launchdarkly/js-sdk-common';
import { WeightedVariation } from './WeightedVariation';
type RolloutKind = 'rollout' | 'experiment';
export interface Rollout {
    kind?: RolloutKind;
    contextKind?: string;
    bucketBy?: string;
    variations: WeightedVariation[];
    seed?: number;
    bucketByAttributeReference?: AttributeReference;
}
export {};
//# sourceMappingURL=Rollout.d.ts.map