import React from 'react'; import { CardProps } from '@wix/design-system'; export interface SchemaCardProps extends Omit { title: string; subtitle?: string; renderField: (fieldId: string) => React.ReactNode; } declare function _SchemaCard({ title, subtitle, renderField, ...rest }: SchemaCardProps): React.JSX.Element; declare namespace _SchemaCard { var displayName: string; } export declare const SchemaCard: typeof _SchemaCard & { displayName: string; }; export {}; //# sourceMappingURL=SchemaCard.d.ts.map