import { Meta, StoryObj } from '@storybook/react';
import { SignInForm } from './SignInForm';
declare const meta: Meta<typeof SignInForm>;
export default meta;
type Story = StoryObj<typeof SignInForm>;
/**
 * Default sign in form with SSO providers and email/password.
 */
export declare const Default: Story;
/**
 * Sign in form with only SSO providers, no email/password form.
 */
export declare const SsoOnly: Story;
/**
 * Sign in form with only email/password, no SSO providers.
 */
export declare const EmailPasswordOnly: Story;
/**
 * Sign in form with large buttons.
 */
export declare const LargeButtons: Story;
