import type { ReactNode } from "react"; import { FC } from "react"; import { ButtonSizes } from "../Button"; interface PlayButtonProps { title?: string; type?: "primary" | "text" | "outlineGray" | "blur"; icon?: ReactNode; circle?: boolean; size?: keyof ButtonSizes; className?: string; } export declare const PlayButton: FC; export {};