import { type JSX, type ReactNode } from "react"; import type { ChildrenFunction } from "../../typings/index"; interface CustomComponent extends Omit { } type Props = { children?: ChildrenFunction; label?: string | ReactNode; } & Omit; export declare function PaymentSourceDeleteButton({ children, label, ...props }: Props): JSX.Element | null; export default PaymentSourceDeleteButton;