declare enum RemoteIconType { MATERIAL_NATIVE = "MATERIAL_NATIVE", REMOTE_RESOURCE = "REMOTE_RESOURCE", LOCAL_ASSET = "LOCAL_ASSET" } declare class RemoteIconData { uri: string; type: RemoteIconType; asset: string; get iconNameFromUri(): string; constructor(props: { uri: string; type: RemoteIconType; asset?: string; }); static fromMaterial(iconName: string): RemoteIconData; static fromUri(uri: string): RemoteIconData; static fromAssets(asset: string): RemoteIconData; static fromRemote(resource: string): RemoteIconData; static fromBase64(base64: string): RemoteIconData; } import MaterialIcons from "./material-icons"; export { RemoteIconType, RemoteIconData, RemoteIconData as data, MaterialIcons, MaterialIcons as material, };