import { ConfigPlugin } from "expo/config-plugins";
/**
 * Check if SVG content is an SF Symbol template by looking for the
 * characteristic `<g id="Symbols">` group that all SF Symbol templates contain.
 */
export declare function isSFSymbolContent(content: string): boolean;
export declare const withIosSymbolset: ConfigPlugin<{
    cwd: string;
    name: string;
    svgContent: string;
    svgFilename: string;
}>;
