import { FunctionalComponent } from '../../stencil-public-runtime'; import { VoidFn } from '../../utils'; interface ButtonProps { label: string; callback: VoidFn; matched?: boolean; } declare const Button: FunctionalComponent; export { Button }; export default Button;