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