export interface LoginToOrderButtonProps { /** * Invoked when the button is clicked. The host owns navigation — the package * cannot know whether the app routes with a router push or a plain redirect. * When omitted the button still renders but does nothing. */ onLoginClick?: () => void; /** Translated labels. Key: `loginToOrder`. */ labels?: Record; /** Extra classes appended to the button. */ className?: string; } declare const _default: import('vue').DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>; export default _default;