export type ButtonVariant = 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link'; export type ButtonSize = 'default' | 'sm' | 'lg' | 'icon'; export type ButtonPosition = 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'; export type ButtonDisplayVariant = 'floating' | 'inline'; export interface IssueReporterButtonProps { variant?: ButtonDisplayVariant; position?: ButtonPosition; unstyled?: boolean; className?: string; buttonVariant?: ButtonVariant; buttonSize?: ButtonSize; children?: string; icon?: any; iconClassName?: string; textClassName?: string; hideIcon?: boolean; hideText?: boolean; category?: string; prefill?: Record; ariaLabel?: string; } declare function __VLS_template(): { default?(_: {}): any; }; declare const __VLS_component: import('vue').DefineComponent, { variant: string; unstyled: boolean; hideIcon: boolean; hideText: boolean; ariaLabel: string; }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly, { variant: string; unstyled: boolean; hideIcon: boolean; hideText: boolean; ariaLabel: string; }>>> & Readonly<{}>, { variant: ButtonDisplayVariant; unstyled: boolean; hideIcon: boolean; hideText: boolean; ariaLabel: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=IssueReporterButton.vue.d.ts.map