export type * from "./Button.js";
export type * from "./Button.Expand.js";
export type * from "./Button.Group.js";
/**
* Clickable button
*
* @see https://bifrost.intility.com/react/button
*
* @example
*
*
*
*
*/
declare const _default: import("react").ForwardRefExoticComponent> & {
/**
* Wrapper for multiple buttons
*
* @see https://bifrost.intility.com/react/button#buttongroup
*
* @example
*
*
*
*
*
*/
Group: import("react").ForwardRefExoticComponent>;
/** Button with rotating caret icon, useful for toggling expandable content
*
* @see https://bifrost.intility.com/react/button#buttonexpand
*
* @example
* setOpenState(!openState)}>
* Toggle
*
*/
Expand: import("react").ForwardRefExoticComponent>;
};
export default _default;