import { SFSchema } from './schema/index';
import { SFOptionalHelp, SFUISchemaItem } from './schema/ui';
export declare class SFItemWrapComponent {
    id: string;
    schema: SFSchema;
    ui: SFUISchemaItem;
    showError: boolean;
    error: string;
    showTitle: boolean;
    title: string | null;
    get t(): string | null | undefined;
    get oh(): SFOptionalHelp;
}
