import React from 'react';
import { IQuickButton } from './types/quickButton';
declare const QuickButtonBoundary: <V extends string | unknown>(props: IQuickButton<V>, ref: React.ForwardedRef<HTMLButtonElement> | undefined | null) => JSX.Element;
/**
 * @description
 * QuickButton component is a button component that can be used to create a button.
 * @param {React.PropsWithChildren<IQuickButton<V>>} props
 * @returns {JSX.Element}
 */
declare const QuickButton: <V>(props: React.PropsWithChildren<IQuickButton<V>> & {
    ref?: React.ForwardedRef<HTMLButtonElement> | undefined | null;
}) => ReturnType<typeof QuickButtonBoundary>;
export { QuickButton };
