import React from 'react';
declare type Props = {
    children: React.ReactNode;
};
declare const Toolbar: ({ children }: Props) => JSX.Element;
export { Toolbar };
