import type { DevKeyringConfig } from '../../lib/config/types'; interface DevKeyringProps { /** DevKeyring configuration from theme */ config: DevKeyringConfig; } /** * DevKeyring - Development/QA credential selector * * Provides quick access to test credentials during development. * This component should ONLY be rendered in development/test environments. * * Features: * - Shows a floating button below the login form * - Displays list of test users with their roles * - Auto-fills email and password on user selection * - Auto-expands email form if collapsed * * SECURITY: Only renders when NODE_ENV !== 'production' */ export declare function DevKeyring({ config }: DevKeyringProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=DevKeyring.d.ts.map