import { ButtonProps } from '../ui/Button/interfaces.js'; export declare const CreateButton: ({ basePath, children }: CreateButtonProps) => import("react/jsx-runtime").JSX.Element; interface Props { basePath?: string; } export type CreateButtonProps = Props & ButtonProps; export {};