/// import * as T from "./type"; export declare const BtnAction: ({ link, onClick, action, }: { action: T.Action; } & T.BtnCoreProps) => JSX.Element; export declare const BtnBack: ({ link, onClick }: T.BtnCoreProps) => JSX.Element; export declare const BtnEdit: ({ link, onClick, }: { link?: string | undefined; onClick?: (() => void) | undefined; }) => JSX.Element; export default BtnAction;