import { ReactNode, Ref, CSSProperties } from "react"; /** * All the mapping functions to map properties to dom properties */ export declare const domLiteralMappers: { children: (p: ReactNode) => { children: ReactNode; }; className: (p: string) => string; elRef: (value: Ref | Ref[]) => { ref: Ref; }; style: (p: CSSProperties) => { style: CSSProperties; }; draggable: (p: boolean) => boolean; title: (p: string) => string; }; //# sourceMappingURL=domLiteralMappers.d.ts.map