import React from 'react';
import { AccessTokenRecord } from '../../utils/synapseTypes/AccessToken/AccessTokenRecord';
export declare type AccessTokenCardProps = {
    /** Record referring to an access token, not a token itself */
    accessToken: AccessTokenRecord;
    onDelete: (...args: any[]) => void;
};
export declare const AccessTokenCard: React.FunctionComponent<AccessTokenCardProps>;
