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