import * as PropertySymbol from '../../PropertySymbol.js';
import CSSRuleTypeEnum from '../CSSRuleTypeEnum.js';
import CSSGroupingRule from './CSSGroupingRule.js';
/**
 * CSSScopeRule interface.
 *
 * @see https://developer.mozilla.org/en-US/docs/Web/API/CSSScopeRule
 */
export default class CSSScopeRule extends CSSGroupingRule {
    [PropertySymbol.start]: string;
    [PropertySymbol.end]: string;
    [PropertySymbol.rulePrefix]: string;
    /**
     * @override
     */
    get type(): CSSRuleTypeEnum;
    /**
     * @override
     */
    get cssText(): string;
    /**
     * Returns start.
     *
     * @returns Start.
     */
    get start(): string;
    /**
     * Returns end.
     *
     * @returns End.
     */
    get end(): string;
}
//# sourceMappingURL=CSSScopeRule.d.ts.map