import { type LocalizedIconButtonProps } from '../icon-button'; export type PlayPauseIconButtonProps = LocalizedIconButtonProps & { paused: boolean; }; /** * A localized icon button that toggles between play and pause states. * Uses the useLocale hook from LocaleProvider context to provide an accessible label * based on the current locale, or wraps with one if `locale` is provided. */ export declare const PlayPauseIconButton: ({ paused, ...props }: PlayPauseIconButtonProps) => import("react/jsx-runtime").JSX.Element;