import React from 'react'; import type { Polymorphic } from '../core/polymorphism'; import { type AvatarBaseProps } from '../media'; import { type PressableBaseProps } from '../system'; import type { ButtonBaseProps } from './Button'; export declare const avatarButtonDefaultElement = 'button'; export type AvatarButtonDefaultElement = typeof avatarButtonDefaultElement; export type AvatarButtonBaseProps = Polymorphic.ExtendableProps< Omit, Pick & Pick< AvatarBaseProps, 'alt' | 'src' | 'colorScheme' | 'shape' | 'borderColor' | 'name' | 'selected' > >; export type AvatarButtonProps = Polymorphic.Props< AsComponent, AvatarButtonBaseProps >; type AvatarButtonComponent = (( props: AvatarButtonProps, ) => Polymorphic.ReactReturn) & Polymorphic.ReactNamed; export declare const AvatarButton: AvatarButtonComponent; export {}; //# sourceMappingURL=AvatarButton.d.ts.map