import { ButtonType } from '../AwesomeButton/index'; type SharerType = { image?: string; message?: string; phone?: string; url?: string; user?: string; }; type DimensionsType = { width: number; height: number; }; type SocialButtonType = { sharer?: SharerType; icon?: boolean | DimensionsType; dimensions?: DimensionsType; }; declare const AwesomeButtonSocial: ({ onPress, children, icon, sharer, dimensions, type, ...extra }: SocialButtonType & ButtonType) => import("react/jsx-runtime").JSX.Element; export default AwesomeButtonSocial;