/** @tossdocs-ignore */ /** @jsxImportSource react */ import { PropsWithChildren, ReactNode } from 'react'; interface Props extends PropsWithChildren { with: ReactNode; } export declare function Separated({ children, with: separator }: Props): JSX.Element; export {};