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