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