import { PropType } from 'vue'; import { ButtonVariants } from './button.styles'; export declare const buttonProps: { variant: { type: PropType; }; color: { type: PropType; }; size: { type: PropType; }; radius: { type: PropType; }; isFullWidth: { type: PropType; }; isDisabled: { type: PropType; }; isLoading: { type: PropType; }; };