import React from "react"; import { CheckBoxIconProps, IconProps, PlayableIconProps, SavedIconProps } from "./types"; declare const Icons: { Bookmark: (props: SavedIconProps) => React.ReactElement; Checkbox: (props: CheckBoxIconProps) => React.ReactElement; Close: (props: IconProps) => React.ReactElement; CloseTooltip: (props: IconProps) => React.ReactElement; Edit: (props: IconProps) => React.ReactElement; Help: (props: IconProps) => React.ReactElement; Microphone: (props: IconProps) => React.ReactElement; Request: (props: IconProps) => React.ReactElement; Save: (props: IconProps) => React.ReactElement; SaveWithChanges: (props: IconProps) => React.ReactElement; Search: (props: IconProps) => React.ReactElement; Settings: (props: IconProps) => React.ReactElement; Share: (props: IconProps) => React.ReactElement; Shevron: (props: IconProps) => React.ReactElement; Speaker: (props: PlayableIconProps) => React.ReactElement; SpeakerLibrary: (props: PlayableIconProps) => React.ReactElement; SpeakerNoRecording: (props: PlayableIconProps) => React.ReactElement; SpeakerOwner: (props: PlayableIconProps) => React.ReactElement; SpeakerPeer: (props: PlayableIconProps) => React.ReactElement; }; export default Icons;