import { type DefaultValue } from '@atlaskit/user-picker'; export interface UsersRequest { baseUrl: string | undefined; accountIds: string[]; productKey: 'jira' | 'confluence'; } declare function hydrateDefaultValues(baseUrl: string | undefined, value: DefaultValue, productKey: string, siteId: string | undefined, atlAttributes?: { tenantId?: string; activationId?: string; }): Promise; export default hydrateDefaultValues;