import type { AuthType } from './types'; interface AuthSelectorProps { authType: AuthType; apiKey: string; bypassMode: boolean; selectedTeamId: string | null; /** Optional. The act-as input renders only when onActAsUserChange is provided. */ actAsUserId?: string; onAuthTypeChange: (type: AuthType) => void; onApiKeyChange: (key: string) => void; onBypassModeChange: (enabled: boolean) => void; onTeamChange: (teamId: string | null) => void; onActAsUserChange?: (userId: string) => void; } export declare function AuthSelector({ authType, apiKey, bypassMode, selectedTeamId, actAsUserId, onAuthTypeChange, onApiKeyChange, onBypassModeChange, onTeamChange, onActAsUserChange, }: AuthSelectorProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=AuthSelector.d.ts.map