import React, { FunctionComponent } from 'react'; interface ContainerPropsType { isTargeted: boolean; } export declare const SelectOptionContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, ContainerPropsType>>; export interface PropsType { value: string; label: string; 'data-testid'?: string; } interface StateType { hovering: boolean; } declare const SelectOption: FunctionComponent>; export default SelectOption; export { StateType };