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