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