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