import { JweHeader } from "./IJweGeneralJson";
/**
 * JWS compact format
 */
export default interface IJwsCompact {
    /**
     * The protected (signed) header.
     */
    protected?: JweHeader | undefined;
    /**
     * The application-specific non-encoded payload.
     */
    payload: string;
    /**
     * The signature
     */
    signature: string;
}
