export type * from "./Inline.js";
export type * from "./Inline.Separator.js";
export type * from "./Inline.Stretch.js";
/**
* Wrapper to position multiple elements on the same line
*
* @see https://bifrost.intility.com/react/inline
*
* @example
* // place two elements next to eachother with the default `12px` gap
*
*
*
*
*
* @example
* // push the second div to the right by using a separator before it
*
*
*
*
*
*
* @example
* // stretch the first div to fill available space
*
*
*
*
*
*
*/
declare const _default: import("react").ForwardRefExoticComponent> & {
/**
* The component will push elements away from it.
*
* @see https://bifrost.intility.com/react/inline#inlineseparator
*/
Separator: import("react").ForwardRefExoticComponent>;
/**
* Wrapping an element in will stretch it to fill available
* space.
*
* @see https://bifrost.intility.com/react/inline#inlinestretch
*/
Stretch: import("react").ForwardRefExoticComponent>;
};
export default _default;