import type { BaseResponsiveProps } from '../../../../../responsive'; import type { ClientDataSource, ClientProps, ClientSelectorProps } from '../types'; interface UseClientSelectorPropsOptions extends Pick, BaseResponsiveProps { } export declare function useClientSelectorProps({ className, context: clientContext, isShowAvatar, onAfterSelect, readOnly, variant, }: UseClientSelectorPropsOptions): { selectedCustomer: ClientDataSource | null; selectorProps: ClientSelectorProps; }; export {};