import type { RouteLocationRaw } from 'vue-router'; import type { IconName } from './_internal/components/Icon/Icon.types'; export interface QuickActionProps { /** * The title prop will show the first line of text */ title: string; /** * The subtitle prop will show the second line of text */ subtitle: string; /** * The `to` prop for vue-router's `RouterLink` component */ to?: RouteLocationRaw; /** * If defined, the quick action will render as an `` tag. */ href?: string; /** * Icon to render on the left side */ icon: IconName; } declare const __VLS_export: import("vue").DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;