import * as React from 'react'; type SocialButtonType = 'kakao' | 'apple' | 'google'; interface SocialButtonProps { type: SocialButtonType; onPress: () => void; disabled?: boolean; loading?: boolean; className?: string; } export default function SocialButton({ type, onPress, disabled, loading, className, }: SocialButtonProps): React.JSX.Element; export {}; //# sourceMappingURL=social-button.d.ts.map