import type { ComponentType, ElementType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' export interface VideoButtonProps extends HTMLAttrs { children?: ReactNode variant?: Variant icon: ElementType label: string disableFocus: boolean } declare const VideoButton: ComponentType export default VideoButton