import React from 'react'; import type { ViewStyle } from 'react-native'; import type { AvatarSize } from '@coinbase/cds-common/types/AvatarSize'; import type { Shape } from '@coinbase/cds-common/types/Shape'; import type { SharedAccessibilityProps } from '@coinbase/cds-common/types/SharedAccessibilityProps'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; import { type BoxProps } from '../layout/Box'; export type RemoteImageGroupBaseProps = SharedProps & SharedAccessibilityProps & Pick & { /** * Indicates the number of remote image before it collapses * @default 4 */ max?: number; /** * Size of all RemoteImage children in the group. * @default m */ size?: AvatarSize | number; /** * Shape of all RemoteImage children in the group * @default circle */ shape?: Shape; /** Children content */ children?: React.ReactNode; }; export type RemoteImageGroupProps = RemoteImageGroupBaseProps; export declare const RemoteImageGroup: ( _props: RemoteImageGroupProps, ) => import('react/jsx-runtime').JSX.Element; export declare const shapeStyles: Record; //# sourceMappingURL=RemoteImageGroup.d.ts.map