import { IllustrationAsset, BaseSvgAsset } from './types.js';
export type TemplateFormWithBackgroundAsset = IllustrationAsset<BaseSvgAsset & {
    readonly name: 'TemplateFormWithBackground';
}>;
/**
 * TemplateFormWithBackground illustration asset
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import TemplateFormWithBackground from '@payfit/unity-illustrations/assets/TemplateFormWithBackground'
 *
 * <Illustration
 *   illustration={TemplateFormWithBackground}
 *   alt="TemplateFormWithBackground illustration"
 *   size="md"
 * />
 * ```
 */
declare const TemplateFormWithBackground: TemplateFormWithBackgroundAsset;
export default TemplateFormWithBackground;
