import { InjectionToken } from "@angular/core"; export interface PadIconConfig { defaultColor: string; defaultSize: PadIconSize; path: string; sizes: GroupIconSize; } export type PadIconSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl"; export type GroupIconSize = { [k in PadIconSize]: string; } & Record; export declare const DEFAULT_CONFIG: PadIconConfig; export declare const PAD_ICON_CONFIG: InjectionToken;