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