import { ElementType, ReactNode, ComponentPropsWithoutRef } from 'react'; import { ButtonSizeVariant } from 'types'; export declare type Props = { variant: ButtonSizeVariant; }; export declare type RoundButtonProps = Props & { renderAs?: T; children: ReactNode; } & ComponentPropsWithoutRef;