import type { Anchor, AutoAnchor, TextAnchor, HAnchor, VAnchor, BorderRadius, Padding, IconLike } from "./kinds"; import type { TextAlign, TextBaseline } from "../../core/enums"; import type { XY, LRTB, Corners } from "../../core/util/bbox"; export declare function normalized_anchor(anchor: AutoAnchor): { x: HAnchor | "auto"; y: VAnchor | "auto"; }; export declare function anchor(anchor: Anchor): XY; export declare function anchor(anchor: AutoAnchor): XY; export declare function text_anchor(text_anchor: TextAnchor, align: TextAlign, baseline: TextBaseline): XY; export declare function padding(padding: Padding): LRTB; export declare function border_radius(border_radius: BorderRadius): Corners; export declare function apply_icon(el: HTMLElement, icon: IconLike): void; //# sourceMappingURL=resolve.d.ts.map