import React from 'react'; /** * Combines elements into one row, where all elements are the same height, do * not have a gutter or a border radius in between. */ declare const Compound: ({ children }: CompoundProps) => import("react/jsx-runtime").JSX.Element; export interface CompoundProps { children: React.ReactNode; } export default Compound;