import { default as React } from 'react'; import { CloseButtonSizes } from '@viasat/beam-shared/components/closeButton'; import { ProductType, ThemeTypes } from '@viasat/beam-shared/utils/constants'; export interface CloseButtonProps extends React.ComponentPropsWithoutRef<'button'> { /** * Specify the size of the CloseButton * @default 'md' */ size?: CloseButtonSizes; /** * Specify the theme of the CloseButton. By default it inherits the theme from the parent */ theme?: ThemeTypes; /** * Specify if the CloseButton is disabled * @default false */ disabled?: boolean; /** * Specify the productType of the CloseButton */ productType?: ProductType; } export declare const CloseButton: React.ForwardRefExoticComponent>; export default CloseButton;