import { ComponentPropsWithRef, FC, PropsWithChildren } from 'react'; import { TBastColor } from '../../../shared/lib'; export interface IBastButtonProps extends Omit, 'type'>, PropsWithChildren { fill?: 'filled' | 'outlined' | 'cleared'; size?: 'large' | 'small'; expand?: boolean; type?: 'button' | 'submit'; shape?: 'round' | 'default'; iconOnly?: boolean; color?: TBastColor; disabled?: boolean; } export declare const BastButton: FC;