import { JSX, VNode } from 'preact';
import { IBaseComponentProps, TIconProps } from '../../../types';
interface IProps extends IBaseComponentProps {
    children: string;
    fullWidth?: boolean;
    leftIcon?: VNode<TIconProps>;
    rightIcon?: VNode<TIconProps>;
}
type TProps = IProps & Omit<JSX.HTMLAttributes<HTMLButtonElement>, 'children'>;
export default TProps;
//# sourceMappingURL=TProps.d.ts.map