import React from 'react';
import { IQuickButtonStandAlone } from './types/quickButton';
/**
 * @description
 * QuickButton component is a button component that can be used to create a button.
 * @param {React.PropsWithChildren<IQuickButtonStandAlone>} props
 * @returns {JSX.Element}
 * @constructor
 */
export declare const QuickButtonStandAlone: React.ForwardRefExoticComponent<IQuickButtonStandAlone & React.RefAttributes<HTMLButtonElement>>;
