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