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