import { AppIconName } from "AppIcon"; import { CommonComponentProps } from "Types/common"; export type IconSelectorProps = CommonComponentProps & { onSelect?: (icon: AppIconName) => void; selectedColor: string; selectedIcon?: AppIconName; iconPalette?: AppIconName[]; fill?: boolean; }; declare function IconSelector(props: IconSelectorProps): JSX.Element; declare namespace IconSelector { var defaultProps: { fill: boolean; iconPalette: 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 default IconSelector;