export declare const getSlugHexs: (slugs: string[]) => Promise<{
    hexs: {
        slug: string;
        hex: string;
        title: string;
    }[];
    cache: Record<string, {
        title: string;
        hex: string;
        slug: string;
    }> | undefined;
}>;
