/// import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; style?: Style; children: JSX.Element | JSX.Element[]; }; declare const Card: ({ tw, style, children }: Props) => JSX.Element; export default Card;