import { JSX } from 'react'; import { ButtonSocialStyle, buttonSocialStyle } from '../theme/button-social.css'; type buttonSocialStyle = ButtonSocialStyle & Record; export interface ButtonSocialProps extends React.ButtonHTMLAttributes, buttonSocialStyle { header: string; brand: string; fullWidth?: boolean; className?: string; } export declare const ButtonSocial: ({ header: title, brand, size, variant, fullWidth, className, ...props }: ButtonSocialProps) => JSX.Element; export {}; //# sourceMappingURL=button-social.d.ts.map