import { FontAwesomeType } from '../apps/canvas-builder/types/font-awesome.types'; export declare function applyFont(dataUrl: string | ArrayBuffer | null, fontName: string): void; export declare function getFontAwesomeIconNameAndType(icon?: string): { name: string; type?: FontAwesomeType; }; export declare function getAppIconProps(iconString?: string): { icon: string; faType: 'far' | 'fab' | 'fa-kit'; };