/**
 * Style declaration value parser.
 */
export default class CSSStyleDeclarationValueUtility {
    /**
     * Splits by comma while respecting nested parentheses.
     *
     * @param value Value to split.
     * @returns Array of parts.
     */
    static splitByComma(value: string): string[];
    /**
     * Splits by space while respecting nested parentheses.
     *
     * @param value Value to split.
     * @returns Array of parts.
     */
    static splitBySpace(value: string): string[];
}
//# sourceMappingURL=CSSStyleDeclarationValueUtility.d.ts.map