import { ConfigPlugin } from "expo/config-plugins"; /** * Check if SVG content is an SF Symbol template by looking for the * characteristic `` 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; }>;