export default SelectButton; type SelectButton = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A variant of ``, looking like a normal button. * @see https://w3c.github.io/aria/#radio * @see https://www.w3.org/WAI/ARIA/apg/patterns/radio/ */ declare const SelectButton: import("svelte").Component, {}, "selected">; type Props = { /** * Whether to select the widget. An alias of the `aria-checked` * attribute. Because the UI is a button, we expose `selected` instead of `checked`. */ selected?: boolean | undefined; }; import type { ButtonProps } from '../../typedefs';