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