///
import type { PDSTextType } from '../../common';
export type TextButtonProps = {
text?: PDSTextType;
size?: 'rlarge' | 'large' | 'medium' | 'small' | 'xsmall';
responsiveMode?: 'none' | 'use';
fontWeight?: 'bold' | 'regular';
type?: 'submit' | 'reset' | 'button';
state?: 'normal' | 'disabled';
colorTheme?: 'none' | 'red' | 'grey_01' | 'white';
onClick?: (e: React.MouseEvent) => void;
};
declare function TextButton({ text, size, responsiveMode, fontWeight, type, state, colorTheme, onClick, ...rest }: TextButtonProps): JSX.Element;
export default TextButton;