import { JSX } from 'solid-js/jsx-runtime'; type CallButtonProps = { sendButtonColor?: string; isDisabled?: boolean; isLoading?: boolean; disableIcon?: boolean; isListening?: boolean; stopListening?: () => void; resumeListening?: () => void; } & JSX.ButtonHTMLAttributes; export declare const CallButton: (props: CallButtonProps) => JSX.Element; export declare const Spinner: (props: JSX.SvgSVGAttributes) => JSX.Element; export {}; //# sourceMappingURL=CallButton.d.ts.map