import React from "react"; export { OnsLargeLogo } from "./Logos/OnsLargeLogo"; export { OnsSmallLogo } from "./Logos/OnsSmallLogo"; export { SignOutLogo } from "./SignOutLogo"; export { AccountIcon } from "./AccountIcon"; export { ArrowIcon } from "./ArrowIcon"; export { SuccessTickIcon } from "./SuccessTickIcon"; export { LoadingIcon } from "./LoadingIcon"; export { NextArrow } from "./PaginationIcons/NextArrow"; export { PreviousArrow } from "./PaginationIcons/PreviousArrow"; export { Star } from "./Star"; export { StarFilled } from "./StarFilled"; export { BookmarkAdd } from "./BookmarkAdd"; export { OpenInNew } from "./OpenInNew"; export { Close } from "./Close"; export { ArrowForward } from "./ArrowForward"; export { Help } from "./Help"; export { Link } from "./Link"; export { CalculatedSummaryIcon } from "./CalculatedSummaryIcon"; export { ConfirmationQuestionIcon } from "./ConfirmationQuestionIcon"; export { ContentCopyIcon } from "./ContentCopyIcon"; export { DatabaseIcon } from "./DatabaseIcon"; export { DeleteIcon } from "./DeleteIcon"; export { Download } from "./Download"; export { FolderIcon } from "./FolderIcon"; export { BoldIcon } from "./BoldIcon"; export { HighlightIcon } from "./HighlightIcon"; export { ListBulletedIcon } from "./ListBulletedIcon"; export { FunctionIcon } from "./FunctionIcon"; export { ListCollectorIcon } from "./ListCollectorIcon"; export { Search } from "./Search"; export { SectionIcon } from "./SectionIcon"; export { SwapVert } from "./SwapVert"; export { MoveDown } from "./MoveDown"; export { MoveUp } from "./MoveUp"; export { Header2 } from "./Header2"; export { TextSnippetIcon } from "./TextSnippetIcon"; export { CheckboxIcon } from "./AnswerTypes/Checkbox"; export { Currency } from "./AnswerTypes/Currency"; export { Date } from "./AnswerTypes/Date"; export { DateRange } from "./AnswerTypes/DateRange"; export { Duration } from "./AnswerTypes/Duration"; export { MutuallyExclusive } from "./AnswerTypes/MutuallyExclusive"; export { Number } from "./AnswerTypes/Number"; export { Percentage } from "./AnswerTypes/Percentage"; export { Radio } from "./AnswerTypes/Radio"; export { SelectIcon } from "./AnswerTypes/Select"; export { Text } from "./AnswerTypes/Text"; export { Textarea } from "./AnswerTypes/Textarea"; export { Unit } from "./AnswerTypes/Unit"; export type IconTypes = "AccountIcon" | "ArrowForward" | "ArrowIcon" | "BookmarkAdd" | "CalculatedSummaryIcon" | "CheckboxIcon" | "Close" | "ConfirmationQuestionIcon" | "ContentCopyIcon" | "Currency" | "Date" | "DateRange" | "BoldIcon" | "DatabaseIcon" | "DeleteIcon" | "Download" | "Duration" | "FolderIcon" | "FunctionIcon" | "HighlightIcon" | "ListBulletedIcon" | "Help" | "Header2" | "Link" | "ListCollectorIcon" | "LoadingIcon" | "MoveDown" | "MoveUp" | "MutuallyExclusive" | "NextArrow" | "Number" | "OpenInNew" | "Percentage" | "PreviousArrow" | "Radio" | "Search" | "SectionIcon" | "SelectIcon" | "SignOutLogo" | "Star" | "StarFilled" | "SuccessTickIcon" | "SwapVert" | "TextSnippetIcon" | "Text" | "Textarea" | "Unit"; export interface Props { iconType: IconTypes; classes?: string; style?: React.CSSProperties; } export declare const SelectedIcon: (props: Props) => React.JSX.Element | null;