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