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