import { Product } from '@dollarshaveclub/types'; declare type Props = Readonly<{ product?: Product; title?: string; subtitle?: string; productTileName?: string; miscContent?: JSX.Element | string; }>; export default function ProductTilePlain({ product, title, subtitle, productTileName, miscContent, }: Props): JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map