import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; title: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type PermissionTextProps = typeof __propDef.props; export declare type PermissionTextEvents = typeof __propDef.events; export declare type PermissionTextSlots = typeof __propDef.slots; export default class PermissionText extends SvelteComponentTyped { } export {};