import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import { Theme } from '../../theme'; import { AddDeviceProps } from '../AddDevice'; declare const styles: (theme: Theme) => Record<"root", import("@material-ui/core/styles/withStyles").CSSProperties>; interface AddDevicePopoverProps extends AddDeviceProps, WithStyles { open?: boolean; onClose: () => void; headingText: string; testId?: string; hideAudioOnly?: boolean; } export declare const AddDevicePopover: React.SFC; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;