import * as React from 'react';
export declare type UserSearchBoxProps = {
    id?: string;
    onSelectCallback?: (selected: FormattedUserHeader) => void;
    filterUserIds?: string[];
};
export declare type FormattedUserHeader = {
    ownerId: string;
    firstName: string;
    lastName: string;
    userName: string;
};
declare const UserSearchBox: React.FC<UserSearchBoxProps>;
export default UserSearchBox;
