import React from 'react';
import { IButtonStandAlone } from './types/button';
export declare const ButtonStandAloneStructure: (props: IButtonStandAlone) => JSX.Element;
/**
 * Represents the standalone button component.
 * @see {@link https://kubit.es/standalone-components/button/button-standalone/}
 *
 * @function ButtonStandAlone
 * @category StandAlone Components
 * @param {React.PropsWithChildren<IButtonStandAlone>} props - The props for the component.
 * @param {React.ForwardedRef<HTMLButtonElement>} ref - The ref for the component.
 * @returns {JSX.Element} - The JSX element representing the button component.
 *
 */
export declare const ButtonStandAlone: React.ForwardRefExoticComponent<IButtonStandAlone & React.RefAttributes<HTMLButtonElement>>;
