import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export declare class SseConfig { Type: Value; KeyArn?: Value; constructor(properties: SseConfig); } export interface SequenceStoreProperties { Description?: Value; FallbackLocation?: Value; SseConfig?: SseConfig; Tags?: { [key: string]: Value; }; Name: Value; } export default class SequenceStore extends ResourceBase { static SseConfig: typeof SseConfig; constructor(properties: SequenceStoreProperties); }