import { z } from 'zod';
import { BaseResourceSchema } from './base.js';
export declare const lineConfigResourceSettingSchema: z.ZodObject<{
    lineId: z.ZodString;
    channelId: z.ZodString;
    channelSecret: z.ZodString;
    channelAccessToken: z.ZodString;
}, "strip", z.ZodTypeAny, {
    lineId: string;
    channelId: string;
    channelSecret: string;
    channelAccessToken: string;
}, {
    lineId: string;
    channelId: string;
    channelSecret: string;
    channelAccessToken: string;
}>;
export type ILineConfigResourceSettingSchema = z.infer<typeof lineConfigResourceSettingSchema>;
export declare const LineConfigResourceSchema: BaseResourceSchema<typeof lineConfigResourceSettingSchema>;
