import { SvelteComponentTyped } from "svelte"; export declare const POST_CONTEXT_ID = "post-context-id"; import { type ActionArray } from '../../utils/useActions'; declare const __propDef: { props: { [x: string]: any; elevation?: "sm" | "md" | "lg" | "xl" | "none" | undefined; bordered?: boolean | undefined; use?: ActionArray | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { header: {}; content: {}; default: {}; images: {}; status: {}; actions: {}; }; }; export declare type PostProps = typeof __propDef.props; export declare type PostEvents = typeof __propDef.events; export declare type PostSlots = typeof __propDef.slots; export default class Post extends SvelteComponentTyped { } export {};