/**
 * @wuwei-labs/srsly/kit
 *
 * Kit-native entry point for @solana/kit users.
 * All instruction functions return InstructionResult (extends Instruction[]).
 *
 * @example
 * ```typescript
 * import { createContract, setSdkConfig } from '@wuwei-labs/srsly/kit';
 *
 * const ixs = await createContract(params);
 * // ixs is InstructionResult (extends Instruction[]) - use directly with Kit
 * ```
 *
 * @packageDocumentation
 */
export { VERSION } from '../version';
export * from '../utils';
export * from '../instructions';
export * from '../accounts';
export * from '../params';
export * from '../pda';
export * from '../cost';
export { claim, type ClaimParams } from '@wuwei-labs/slyvault';
export * as codama from '../generated/codama';
export * as audit from '../audit';
//# sourceMappingURL=index.d.ts.map