import { SvelteComponentTyped } from "svelte"; import type { TType } from '../interfaces/TTypes'; declare const __propDef: { props: { [x: string]: any; big?: boolean; block?: boolean; theme?: TType; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type PriceProps = typeof __propDef.props; export declare type PriceEvents = typeof __propDef.events; export declare type PriceSlots = typeof __propDef.slots; export default class Price extends SvelteComponentTyped { } export {};