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