import { AttributeReference } from '@launchdarkly/js-sdk-common';
import { Clause } from './Clause';
export interface SegmentRule {
    id: string;
    clauses: Clause[];
    weight?: number;
    bucketBy?: string;
    rolloutContextKind?: string;
    bucketByAttributeReference?: AttributeReference;
}
//# sourceMappingURL=SegmentRule.d.ts.map