import { ExcalidrawElementBase } from "./elements/ExcalidrawElement"; export declare function hexWithAlpha(color: string, alpha: number): string; export declare function has(el: Element, attr: string): boolean; export declare function get(el: Element, attr: string, backup?: string): string; export declare function getNum(el: Element, attr: string, backup?: number): number; export declare function presAttrsToElementValues(el: Element): Partial; type FilterAttrs = Partial>; export declare function filterAttrsToElementValues(el: Element): FilterAttrs; export declare function pointsAttrToPoints(el: Element): number[][]; export {};