import { Table } from 'dexie';
export declare class IconHelper {
    private readonly table;
    constructor(cacheTable: Table<{
        key: string;
        value: string;
    }>);
    iconFind(key: string): Promise<string | undefined>;
    iconCreate(key: string, value: string): Promise<void>;
}
