/// <reference types="react" />
export interface FontLoaderProps {
    /**
     * @description The URL of the font to load
     */
    url: string;
}
declare const FontLoader: import("react").NamedExoticComponent<FontLoaderProps>;
export default FontLoader;
