import { CommonComponentProps } from "Types/common"; declare enum Size { xxs = "xxs", xs = "xs", small = "small", medium = "medium", large = "large" } export declare const AppIconCollection: readonly ["bag", "product", "book", "camera", "file", "chat", "calender", "flight", "frame", "globe", "shopper", "heart", "alien", "bar-graph", "basketball", "bicycle", "bird", "bitcoin", "burger", "bus", "call", "car", "card", "cat", "chinese-remnibi", "cloud", "coding", "couples", "cricket", "diamond", "dog", "dollar", "earth", "email", "euros", "family", "flag", "football", "hat", "headphones", "hospital", "joystick", "laptop", "line-chart", "location", "lotus", "love", "medal", "medical", "money", "moon", "mug", "music", "pants", "pie-chart", "pizza", "plant", "rainy-weather", "restaurant", "rocket", "rose", "rupee", "saturn", "server", "server-line", "shake-hands", "shirt", "shop", "single-person", "smartphone", "snowy-weather", "stars", "steam-bowl", "sunflower", "system", "team", "tree", "uk-pounds", "website", "yen", "airplane", "arrow-down", "arrow-up", "arrow-left", "arrow-right", "help", "open-new-tab"]; export type AppIconName = typeof AppIconCollection[number]; export type AppIconProps = CommonComponentProps & { size?: Size; name: AppIconName; onClick?: (e: any) => void; }; declare function AppIcon(props: AppIconProps): JSX.Element | null; export default AppIcon;