import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { icon: string; title: string; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type FaqRowProps = typeof __propDef.props; export declare type FaqRowEvents = typeof __propDef.events; export declare type FaqRowSlots = typeof __propDef.slots; export default class FaqRow extends SvelteComponentTyped { } export {};