type ValidIconString = 'check-circle' | 'exclamation-triangle' | 'exclamation-circle' | 'information-circle' | 'x-mark';
declare function getIconString(icon: ValidIconString, classes: string, width: number, height: number): string;
export { getIconString };
export type { ValidIconString };
