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