import React from 'react';
import type { SocialLoginOption } from '../../consts/funkit';
import { type BoxProps } from '../Box/Box';
interface Props {
    options: SocialLoginOption[];
    onSelect: (provider: SocialLoginOption['provider']) => void;
    flexDirection?: BoxProps['flexDirection'];
}
export declare const FunSocials: ({ options, onSelect, flexDirection }: Props) => React.JSX.Element;
export {};
