import { ElementBuilderBase } from '../internal/base';
import { Prop } from '../internal/constants';
import { ActionId, Confirm, End, FocusOnLoad, TextProps, Placeholder } from '../internal/methods';
import type { ConfirmationDialogBuilder } from '../bits';
import { ElementTeamParams, InitialUserParams } from '../internal';
import { UserProfile } from 'fox-loop-sdk';
import { InitialUser, SetTeam } from '../internal/methods/set-methods';
export interface UserSelectParams {
    actionId?: string;
    placeholder?: string;
    [Prop.InitialUser]?: InitialUserParams;
    [Prop.TextProps]?: (keyof UserProfile)[];
    [Prop.Team]?: ElementTeamParams;
}
export interface UserSelectBuilder extends ActionId, Confirm<ConfirmationDialogBuilder>, End, FocusOnLoad, Placeholder, InitialUser, TextProps<UserProfile>, SetTeam {
}
/**
 * @@link https://api.slack.com/reference/block-kit/block-elements#users_select
 * @@displayName User Select
 */
export declare class UserSelectBuilder extends ElementBuilderBase {
}
