import * as React from 'react'; import { IdentityType } from 'types'; type IdentityInputSelectedValueType = { variant?: IdentityType; imgSrc?: string | null; name?: string; }; export interface IdentityInputProps extends React.HTMLAttributes { showLabels?: boolean; subject: { placeholder?: string; selectedValue?: IdentityInputSelectedValueType; onClick?: () => void; }; predicate: { placeholder?: string; selectedValue?: IdentityInputSelectedValueType; onClick?: () => void; }; object: { placeholder?: string; selectedValue?: IdentityInputSelectedValueType; onClick?: () => void; }; } declare const IdentityInput: ({ showLabels, subject, predicate, object, ...props }: IdentityInputProps) => import("react/jsx-runtime").JSX.Element; export { IdentityInput };