import React from 'react'; import { Testable } from '../../modules/test-ids'; import { Styleless } from '../../components/Styleless'; import { Look } from './styled'; export declare type Props = React.HTMLAttributes & Testable & { tag: React.ComponentProps['tag']; look: Look; }; export declare const Component: { (props: Props): JSX.Element; displayName: string; defaultProps: Props; };