import { HighlightLegend, ResidueCounts } from './types'; export declare function highlightByChemicalProperties({ sequences, residueCounts }: { sequences: string[]; residueCounts: ResidueCounts; }): { blob: Blob; legend: HighlightLegend; }; declare const chemicalPropertiesColorScheme: { hydrophobic: { label: string; color: string; }; positiveCharge: { label: string; color: string; }; negativeCharge: { label: string; color: string; }; polar: { label: string; color: string; }; cysteine: { label: string; color: string; }; glycine: { label: string; color: string; }; proline: { label: string; color: string; }; aromatic: { label: string; color: string; }; }; export type ChemicalCategory = keyof typeof chemicalPropertiesColorScheme; export {}; //# sourceMappingURL=chemical-properties.d.ts.map