/// <reference types="react" />
import { PostcodeComponentSchema } from '@open-formulieren/types';
import { ComponentPreviewProps } from '../types';
/**
 * Show a formio postcode component preview.
 *
 * @deprecated - The custom component type is deprecated in favour of a text
 * field-based preset.
 *
 * NOTE: for the time being, this is rendered in the default Formio bootstrap style,
 * however at some point this should use the components of
 * @open-formulieren/formio-renderer instead for a more accurate preview.
 */
declare const Preview: React.FC<ComponentPreviewProps<PostcodeComponentSchema>>;
export default Preview;
