import { ComponentType, HTMLAttributes, HTMLProps } from 'react';
export declare namespace Create {
    const Root: import("../../ui/util/PropsWithAs.js").ComponentWithAs<unknown, "div">;
    type Props = {
        icon?: ComponentType;
    };
    function Link({ children, icon: Icon, ...props }: HTMLProps<HTMLAnchorElement> & Props): import("react/jsx-runtime").JSX.Element;
    function Button({ children, icon: Icon, ...props }: HTMLAttributes<HTMLButtonElement> & Props): import("react/jsx-runtime").JSX.Element;
}
