import { Equatable } from '../../equality.js'; export declare class BorderRadiusConfig implements Equatable { topLeft: BorderRadiusCornerConfig; topRight: BorderRadiusCornerConfig; bottomLeft: BorderRadiusCornerConfig; bottomRight: BorderRadiusCornerConfig; constructor(config: Pick); equals(other: this): boolean; } export declare class BorderRadiusCornerConfig implements Equatable { readonly x: number; readonly y: number; constructor(config: Pick); equals(other: this): boolean; } //# sourceMappingURL=config.d.ts.map