Implement a time-based key-value store that supports expiring keys. Your data structure should support the following operations:
set(key, value, ttl): Store the key with its associated value and a time-to-live (ttl) in seconds. The key should be considered expired and inaccessible after the ttl has passed.
get(key): Retrieve the value associated with the key if it exists and has not expired. If the key does not exist or has expired, return null.
Additional requirements:
Design and implement this data structure in the programming language of your choice.