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