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