import { default as React } from 'react'; interface CustomGtmComponentProps { position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'center'; offsetX?: number; offsetY?: number; backgroundColor?: string; textColor?: string; borderRadius?: number; padding?: string; boxShadow?: string; text?: string; icon?: React.ReactNode; width?: string; height?: string; onClick?: () => void; border?: string; } declare const CustomGtmComponent: React.FC; export default CustomGtmComponent;