import { ColorTokens } from '@prensa_tokens'; import React from 'react'; import { LayoutProps, SpacingType } from './types'; export type VariantTypes = 'default' | 'filled'; export type SubjectLayout = { bg_color?: ColorTokens; color?: ColorTokens; enabled?: boolean; font_size?: [string, string]; iconComponent?: any; line_height?: [string, string]; mb?: SpacingType; variant: VariantTypes; }; export type RenderSubjectProps = { color?: ColorTokens | string; editable?: any; iconComponent?: any; item?: any; layout?: LayoutProps; }; declare const RenderSubject: ({ color, editable, item, layout, }: RenderSubjectProps) => React.JSX.Element; export { RenderSubject };