1 | import React from 'react';
|
2 | interface Props {
|
3 | followsIcon: boolean;
|
4 | spacing: string;
|
5 | children?: React.ReactNode;
|
6 | isLoading?: boolean;
|
7 | testId?: string;
|
8 | }
|
9 | declare const _default: ({ children, followsIcon, spacing, isLoading, ...rest }: Props) => JSX.Element;
|
10 | export default _default;
|