import { BorderRadiusCornerConfig } from './config.js'; export declare abstract class BorderRadiusStyleParser { /** * Parse a CSS style string of border radius corner. * @param style the CSS style string * @param width the width of the element, in pixels * @param height the height of the element, in pixels */ abstract parseCorner(style: string, width: number, height: number): BorderRadiusCornerConfig; } /** * A {@link BorderRadiusStyleParser} that can parse CSS border radius * styles strings returned by `window.getComputedStyle`, in the following * formats: * - `px px` * - `px` * - `%` */ export declare class ComputedStylesBorderRadiusParser implements BorderRadiusStyleParser { parseCorner(style: string, width: number, height: number): BorderRadiusCornerConfig; } //# sourceMappingURL=parser.d.ts.map